home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 April: Mac OS SDK / Dev.CD Apr 99 SDK1.toast / Development Kits / ColorSync 2.5.1 SDK / Sample Code / CSDemo 2.5 / CSDemoSources / myDrawMatchedPict.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-09-09  |  1.0 KB  |  44 lines  |  [TEXT/CWIE]

  1.  
  2. #ifndef _MYDRAWMATCHEDPICT_
  3. #define _MYDRAWMATCHEDPICT_
  4.  
  5.  
  6. #ifndef __QUICKDRAW__
  7. #include <QuickDraw.h>
  8. #endif
  9.  
  10. #ifndef __CMAPPLICATION__
  11. #include <CMApplication.h>
  12. #endif
  13.  
  14.  
  15. /**\
  16. |**| ==============================================================================
  17. |**| PUBLIC FUNCTION PROTOTYPES
  18. |**| ==============================================================================
  19. \**/
  20. OSErr    myDrawMatchedPicture    ( PicHandle pict,
  21.                                   CMProfileRef srceProf,
  22.                                   CMProfileRef prevProf,
  23.                                   Rect *rect,
  24.                                   unsigned long *ticks,
  25.                                   unsigned long *pixels ) ;
  26.  
  27. OSErr    myDrawProofedPicture    ( PicHandle pict,
  28.                                   CMProfileRef srceProf,
  29.                                   CMProfileRef destProf,
  30.                                   CMProfileRef prevProf,
  31.                                   Rect *rect,
  32.                                   unsigned long *ticks,
  33.                                   unsigned long *pixels ) ;
  34.  
  35. OSErr    myDrawCheckedPicture    ( PicHandle pict,
  36.                                   CMProfileRef srceProf,
  37.                                   CMProfileRef destProf,
  38.                                   Rect *rect,
  39.                                   unsigned long *ticks,
  40.                                   unsigned long *pixels ) ;
  41.  
  42.  
  43. #endif
  44.